home *** CD-ROM | disk | FTP | other *** search
/ The Guided Tour of Multimedia (Second Edition) / The Guided Tour of Multimedia (Second Edition).iso / trials / director / evalcopy / director.z / NOH_TALE.DIR / 00048_Script_48 < prev    next >
Text File  |  1994-06-29  |  555b  |  19 lines

  1. --This handler provides random branching to "NT.Branch" or
  2. --frame "11a" of the current movie. 
  3.  
  4. --random() generates a random number between 1 and 
  5. --the number in the parentheses. In this case, random(2) 
  6. --generates 1 or 2. If the result of random(2) is 2, 
  7. --Director branches to the movie "NT.Branch". Otherwise,
  8. --it plays Scene 11a of the current movie.
  9.  
  10. on exitframe
  11.   global increment, P
  12.   put random(2) into P
  13.   
  14.   set newP = P
  15.   if newP = 2 then play frame "11a"
  16.   if newP = 1 then play frame "11b-1" of movie "NTBranch"
  17. end
  18.  
  19.